home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / rexx / getxref.rexx < prev   
OS/2 REXX Batch file  |  1992-12-29  |  259b  |  14 lines

  1. /* Simple test for amigaguide.library
  2.  * Written by David N. Junod
  3.  */
  4.  
  5. OPTIONS RESULTS
  6. PARSE ARG node
  7.  
  8. /* Load the ARexx utility library */
  9. IF ~SHOW('L','amigaguide.library') THEN
  10.    CALL ADDLIB('amigaguide.library',0,-30)
  11.  
  12.    line=GetXRef(node)
  13.    say line
  14.